home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
Kubuntu 8.10
/
kubuntu-8.10-desktop-i386.iso
/
casper
/
filesystem.squashfs
/
var
/
lib
/
dpkg
/
info
/
mlocate.postrm
< prev
next >
Wrap
Text File
|
2008-06-26
|
255b
|
17 lines
#! /bin/sh
set -e
VARDIR="/var/lib/mlocate"
if [ "$1" = "purge" ]; then
if [ -d "$VARDIR" ]; then
rm -f "$VARDIR/mlocate.db"
rmdir --ignore-fail-on-non-empty "$VARDIR"
fi
dpkg-statoverride --remove /usr/bin/mlocate || test $? -eq 2
fi